From: Richard M. Stallman Date: Thu, 11 Mar 1993 07:22:49 +0000 (+0000) Subject: (Flogb): Fix use of IN_FLOAT. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96932 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=6628c5eaa00d29312b3b975e9f2e6babf1d17647;p=emacs.git (Flogb): Fix use of IN_FLOAT. --- diff --git a/src/floatfns.c b/src/floatfns.c index 5ae4379c1be..fb6030f69e3 100644 --- a/src/floatfns.c +++ b/src/floatfns.c @@ -626,7 +626,7 @@ This is the same as the exponent of a float.") Lisp_Object val; double f = extract_float (num); - IN_FLOAT (val = logb (f), num); + IN_FLOAT (val = logb (f), "logb", num); XSET (val, Lisp_Int, val); return val; #endif